home *** CD-ROM | disk | FTP | other *** search
/ Revista CD Expert 41 / CD Expert nº 41.iso / DReign2 / DR2Demo.exe / data1.cab / Files / missions / system / shell.zwp / objectives_shell.cfg < prev    next >
Encoding:
Text File  |  2000-09-01  |  673 b   |  37 lines

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 1997-99 Pandemic Studios
  4. //
  5. // Dark Reign II - Shell Logic
  6. //
  7.  
  8. CreateObjectType("Shell::Entry", "Objective")
  9. {
  10.   GameObj();
  11.   ObjectiveObj()
  12.   {
  13.     Condition("TRUE");
  14.     Action()
  15.     {
  16.       Cineractive()
  17.       {
  18.         At(0)
  19.         {
  20.           DisableShroud(1);
  21.           Fade()
  22.           {
  23.             Time(0, 1, 4);
  24.             Direction("up");
  25.           }
  26.           SetBookmark()
  27.           {
  28.             Name("Main::Init");
  29.           }
  30.         }
  31.       }
  32.       Cmd("iface.sendnotifyevent Shell::EventHandler Main::Init");
  33.     }
  34.   }
  35. }
  36.  
  37.